Skip to content

Instantly share code, notes, and snippets.

View sperrye's full-sized avatar

Emily Sperry sperrye

  • Dama Financial; GrowFlow
  • Washington
View GitHub Profile
@sperrye
sperrye / specificity.css
Last active August 7, 2019 19:58
specificity
div {} = 0, 0, 0, 1 = (1)
div ul {} = 0, 0, 0, 2 = (2)
#id {} = 0, 1, 0, 0 = (100)
.class .class {} = 0, 0, 2, 0 = (20)
<element style="{}"> = 1, 0, 0, 0 = (1000)
@sperrye
sperrye / self-taught-links.md
Last active March 8, 2017 15:35
Free Resources for Self-Taught Coders
@sperrye
sperrye / tools-and-resources.md
Last active March 8, 2017 15:35
A list of tools and resources.

Tools and Resources

Last updated: November 5, 2016


###1. Code reference and tutorials

  • Lynda 1 courses Videos and coursework from LinkedIn.
  • w3schools reference live Dictionary-style reference with plain-language explanations and a basic Try-It editor.
  • devdocs.io reference Documentation reference for a number of languages.
  • Bootstrap Cheat Sheet reference live Bootstrap Reference with live examples.