Skip to content

Instantly share code, notes, and snippets.

View CeeNoriega's full-sized avatar

Chelsea Noriega CeeNoriega

View GitHub Profile
@CeeNoriega
CeeNoriega / keybase.md
Last active August 8, 2018 16:19
keybase.md

Keybase proof

I hereby claim:

  • I am ceenoriega on github.
  • I am noriega (https://keybase.io/noriega) on keybase.
  • I have a public key ASAyqChu3O8pc9XHI_gsutX0YxFaSjmapgogN8Kzks71wAo

To claim this, I am signing this object:

#System Check Review Javascript

##Concepts to Know

  • JavaScript CRUD actions on the DOM
  • AJAX "get" and "post" methods
  • Understanding an asynchronous HTTP (Ajax) request
  • Understanding rspec errors & following TDD

##Related Articles

  • Launchbook jquery

#Rails System Check Review

##Concepts to Know

###The Rails MVC

  • Building a route to a controller: resources :airports, only: [:index]
  • Creating a Controller to handle the route: AirportsController#index
  • Writing the Model and Migration
  • Writing view templates to present the information
  • Reading Rails error messages and writing the necessary code to make the tests pass