Skip to content

Instantly share code, notes, and snippets.

View khalidwilliams's full-sized avatar

Khalid Williams khalidwilliams

  • Homebound Technologies, Inc.
  • Chapel Hill, NC
View GitHub Profile
@khalidwilliams
khalidwilliams / Overlook_1906.txt
Last active September 18, 2019 17:28
Overlook links
Add your repo / deployment links in a comment by 9am on Sept 18th
@khalidwilliams
khalidwilliams / NewSpec.md
Last active July 16, 2019 19:01
Breaking Down a New Spec

Breaking Down a New Spec

Learning Goals

  • Talk through the process of tackling a new project
  • Review wireframing
  • Understand how to use project management tools

Getting Started

Projects will always be technically difficult, but tackling the technical challenges gets easier when you have a strong process. Our goal today is to break down and demonstrate that process.

@khalidwilliams
khalidwilliams / json_local_storage_review.md
Last active July 16, 2019 17:52
1904 JSON / localStorage Review

JSON and Local Storage Review

It's important to remember why we use JSON and localStorage -- formatting and saving data on the user's computer, via the WebStorage API.

Using localStorage

localStorage gives us access to a storage object in the browser (go ahead and try calling localStorage in the console. We get an object back!)

This object gives us access to a few methods, such as:

  • localStorage.setItem([key],[value]) => undefined
  • localStorage.getItem([key]) => "[value]" (as a string)