Created
September 30, 2013 22:09
-
-
Save ahimmelstoss/6771036 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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