Skip to content

Instantly share code, notes, and snippets.

View lauraturk's full-sized avatar

Laura Turk lauraturk

View GitHub Profile
@lauraturk
lauraturk / gist:75df0ab001df8477436f6927331a3409
Created October 11, 2017 22:51 — forked from chrissimpkins/gist:5bf5686bae86b8129bee
Atom Editor Cheat Sheet (Sweetmeat)

Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.

Key to the Keys

  • ⌘ : Command key
  • ⌃ : Control key
  • ⌫ : Delete key
  • ← : Left arrow key
  • → : Right arrow key
  • ↑ : Up arrow key
@chrisman
chrisman / vim.md
Last active December 12, 2021 21:37

Data Driven Crash Course

"You learn D3 because it gives you the ability to impement almost every major data visualization technique. It also gives you the power to create your own data visualization techniques, something a more general library can't do."

Lovely Data Inspiration

@tlgreg86
tlgreg86 / quizlette-questions.md
Last active February 23, 2017 20:36
Quizlette Questions

Quizlette Questions for Study

HTML

What does WAI-ARIA stand for?

List and describe the three main categories of how WAI-ARIA breaks down.

Refactor this line of code to be more accessible: ``

@abhiaiyer91
abhiaiyer91 / reduxSelectorPattern.md
Last active April 29, 2022 06:00
Redux Selector Pattern

Redux Selector Pattern

Imagine we have a reducer to control a list of items:

function listOfItems(state: Array<Object> = [], action: Object = {}): Array<Object> {
  switch(action.type) {
    case 'SHOW_ALL_ITEMS':
      return action.data.items
    default: