- What's your favorite dessert?
- If you could spend the weekend in any city which would you choose?
- What's the most beautiful place you've ever seen?
- Would you rather live by the beach or in the mountains?
- What kind of vegetable are you?
- What do you love about your hometown?
- Where would you most like to travel?
- If you could appear on any game show which would you choose?
- What’s the most amazing weather you’ve seen?
- What is your favourite ice cream?
https://github.com/[yourname]
[Describe ambitions: type of work, attributes of team, what you want to learn & teach]
[in reverse chronological order, list at most 5 positions or 10 years back, whichever is fewer]
This file contains 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
# Metaprogramming rots your brain. | |
# First I wrote this: | |
Data = Struct.new(:title) | |
data.collect{|datum| Data.new(datum["title"])} | |
# Then I decided I didn't want to make a huge list of attributes, so I decided to use an | |
# OpenStruct, and ended up doing this: |