Skip to content

Instantly share code, notes, and snippets.

View lauraturk's full-sized avatar

Laura Turk lauraturk

View GitHub Profile
@lauraturk
lauraturk / .block
Last active February 21, 2018 18:45
fresh block
license: mit
@lauraturk
lauraturk / circleci-heroku-continuous-deployment2.0.md
Last active November 23, 2021 15:28
instructions for deploying from circleci2.0 to heroku
@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
@lauraturk
lauraturk / pahlka_haccessibility-spike.md
Last active April 20, 2017 21:25
Haccessiblity-thon

Pahlka Spike for Accessibility

The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect. Tim Berners-Lee, W3C Director and inventor of the World Wide Web

Agenda:

With a partner: Find Contact Information with a Screen Reader

@lauraturk
lauraturk / CSS-animations.md
Last active February 9, 2017 17:41
Transitions Transformations and Animations
@lauraturk
lauraturk / css_challenge.md
Last active February 1, 2017 16:07
My CSS Challenges

CSS Challenge 1

I struggled with this one. Eventually, I made an empty div to hold the three divs, I set the empty div's position to relative and 2 and 3 to absolute, then pushed them left. I know there is a better way, I just couldn't get anything to work. CodePen-1

CSS Challenge 2

I created an empty div with three black divs inside. I set the empty div's postion to relative and the three black divs to absolute. I set the top value of div two for 10 px less than the height of div one, and repeated with div three relative to div two. I set div three left 700px and then split the difference to line up div 2 between the two others. CodePen-2

CSS Challenge 3

I nested div 2 in div 1, set the colors of both, set div 1's top margin to 10 and to auto on the side margins to center it. I calculated that a 200px box perfectly centered in a 400px box would have a margin of 100px around it.