yohan 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/yohan.rb +21 -13
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e934453b42c138bd6da6e689a9ddd104d4a8fd1
|
|
4
|
+
data.tar.gz: 1cfbc643f7039aa08cbaf6f5732c478e40ed351b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32768db893b4559e71fc7f3f528b0dbedc19f6b6c5d6912390e45e9367c85d5cbed8c190d5194020d975850e74428e6c3c3c428420ad73b4d9dd93d645290085
|
|
7
|
+
data.tar.gz: 461f0a334c9702aa8a71487beb2fa4e8894938aede83ae80e3656131b1919205e9b3a0e1d863d4d25b99183f9a6963d88f3a6373ad742483eec208b20daf1558
|
data/lib/yohan.rb
CHANGED
|
@@ -21,28 +21,25 @@ module Resume
|
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
23
|
|
|
24
|
-
def self.passion
|
|
25
|
-
loop do
|
|
26
|
-
puts "animated gifs!"
|
|
27
|
-
end
|
|
28
|
-
end
|
|
29
|
-
|
|
30
24
|
def self.skills
|
|
31
|
-
["Ruby", "Ruby on Rails", "HTML", "CSS", "JavaScript", "Vim"]
|
|
25
|
+
["Ruby", "Ruby on Rails", "HTML", "CSS", "JavaScript", "Git", "PostgresSQL", "Vim"]
|
|
32
26
|
end
|
|
33
27
|
|
|
34
28
|
def self.experience
|
|
35
29
|
{
|
|
36
|
-
startup_institute:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
30
|
+
startup_institute:[
|
|
31
|
+
about: "A Tech Stars company, Startup Institute is an immersive 8 week program equipping students
|
|
32
|
+
with technical and networking skills to thrive in startup environments.",
|
|
33
|
+
track:{
|
|
34
|
+
web_development: "Learn Ruby, Rails, HTML/CSS, JavaScript, PostgresSQL, AWS by doing.
|
|
35
|
+
Work on personal and partner company projects to accelerate learning."
|
|
36
|
+
}]}
|
|
40
37
|
end
|
|
41
38
|
|
|
42
39
|
def self.projects
|
|
43
40
|
{
|
|
44
|
-
gifmedat: "built a
|
|
45
|
-
krossover_leaderboard: "built a
|
|
41
|
+
gifmedat: "built a Rails app for turning images to and resizing animated gifs.",
|
|
42
|
+
krossover_leaderboard: "built a Rails app of automated leaderboard for sports games analytics company, Krossover."
|
|
46
43
|
}
|
|
47
44
|
end
|
|
48
45
|
|
|
@@ -53,5 +50,16 @@ module Resume
|
|
|
53
50
|
def self.portfolio
|
|
54
51
|
"https://ayohan.com"
|
|
55
52
|
end
|
|
53
|
+
|
|
54
|
+
def self.passion
|
|
55
|
+
loop do
|
|
56
|
+
puts "animated gifs!"
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def self.to_s
|
|
61
|
+
`say -v "Good News" "hire me me me"`
|
|
62
|
+
"hire me"
|
|
63
|
+
end
|
|
56
64
|
end
|
|
57
65
|
end
|