Class: Resume::Yohan
- Inherits:
-
Object
- Object
- Resume::Yohan
- Defined in:
- lib/yohan.rb
Constant Summary collapse
- CONTACTS =
ContactsInformation.new
Class Method Summary collapse
- .education ⇒ Object
- .experience ⇒ Object
- .github ⇒ Object
- .passion ⇒ Object
- .portfolio ⇒ Object
- .projects ⇒ Object
- .skills ⇒ Object
Class Method Details
.education ⇒ Object
18 19 20 21 22 |
# File 'lib/yohan.rb', line 18 def self.education (2013..2014).map do |year| "Baruch College, #{year}" end end |
.experience ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/yohan.rb', line 34 def self.experience { startup_institute: ["Web Development Track", description: "8 week immersive program for learning technical and non-technical skills to thrive in startup environment"] } end |
.github ⇒ Object
49 50 51 |
# File 'lib/yohan.rb', line 49 def self.github "https://github.com/ayohan" end |
.passion ⇒ Object
24 25 26 27 28 |
# File 'lib/yohan.rb', line 24 def self.passion loop do puts "animated gifs!" end end |
.portfolio ⇒ Object
53 54 55 |
# File 'lib/yohan.rb', line 53 def self.portfolio "https://ayohan.com" end |
.projects ⇒ Object
42 43 44 45 46 47 |
# File 'lib/yohan.rb', line 42 def self.projects { gifmedat: "built a web app for turning images to and resizing animated gifs", krossover_leaderboard: "built a web app of automated leaderboard for sports games analytics company" } end |
.skills ⇒ Object
30 31 32 |
# File 'lib/yohan.rb', line 30 def self.skills ["Ruby", "Ruby on Rails", "HTML", "CSS", "JavaScript", "Vim"] end |