Welcome to my little slice of GitHub!
🍽️Pop Eats
A little about me in a language we all speak, code!
class La Vinia < SoftwareEngineer
def initialize
@name = 'La Vinia Parker'
@education = [ 'Winthrop University', 'App Academy' ]
@hobbies = [ 'Photography', 'Baking', 'Cooking', 'Travel', 'Painting', 'Exercising', 'Crafting'],
@job_status = ['Open to Work']
end
def current_location
'New York City, New York'
end
def what_I_am_working_on
{
studying: [ 'TypeScript', 'Python'],
reading: [ 'Stolen Focus', 'Dare to Lead', 'The Book of Joy' ],
projects: [ 'Open Table Clone']
}
end
def ask_me_about
['My projects!', "My favorite places I've lived and visited", "My favorite things to cook", "My passions!"]
end
end