Skip to content

Instantly share code, notes, and snippets.

@ahimmelstoss
Created September 30, 2013 22:09
Show Gist options
  • Save ahimmelstoss/6771036 to your computer and use it in GitHub Desktop.
Save ahimmelstoss/6771036 to your computer and use it in GitHub Desktop.
movie_collection = {
:rom_com => ["Bridesmaids", "Bridge Jone's Diary", "Love Actually",
"The Notebook", "He's Just Not that into You", "Friends with Benefits"],
:sci_fi => ["Avatar", "Battlestar Gallatica", "World War Z"],
:drama => ["Blue Jasmine", "Beasts of the Southern Wild"],
:foreign => ["Sin Nombre", "Y Tu Mama Tambien", "Los Amantes Pasajeros", "La Piel que Habito"]
}
recipes_hash = {
:chili => ["turkey", "beans", "chili", "spices", "tomatoes", "cheese"],
:sandwich => ["bread", "peanut butter", "jelly"],
:apple_pie => ["flour", "sugar", "apples", "cinnamon", "baking soda", "baking powder"]
}
user_profiles = {
:user_1 => {:essays => ["blah", "blah", "blah"], :fav_colors => ["yellow", "blue", "orange"]},
:user_2 => {:essays => ["wat", "wat", "wat"], :fav_colors => ["purple", "red", "green"]},
:user_3 => {:essays => ["lol", "lol", "lol"], :fav_colors => ["pink", "black", "brown"]}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment