Skip to content

Instantly share code, notes, and snippets.

View AngelaOh's full-sized avatar

Angela AngelaOh

  • Washington
View GitHub Profile
@AngelaOh
AngelaOh / rails http status codes
Created April 9, 2019 17:09 — forked from mlanett/rails http status codes
HTTP status code symbols for Rails
HTTP status code symbols for Rails
Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings.
Status Code Symbol
1xx Informational
100 :continue
101 :switching_protocols
102 :processing
@AngelaOh
AngelaOh / bio.rb
Last active January 5, 2019 01:09
Jumpstart_Live
# Ask user to input information about the person.
print "Enter name: "
name = gets.chomp.capitalize
print "Enter age: "
age = gets.chomp.to_i
print "Enter occupation: "
occupation = gets.chomp.downcase