forked from dabrorius/jobless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.rb
109 lines (104 loc) · 3.57 KB
/
example.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
require 'jobless'
Jobless.cv do
name "Filip Defar"
email "[email protected]"
location "Zagreb, Croatia"
address "Naserov Trg 4"
homepage "http://dabrorius.github.io"
employment do
entry do
title "Full-stack Rails developer"
company "Blue Stout"
homepage "http://bluestout.com/"
technologies "Ruby, Ruby on Rails, Javascript"
bulletin "Created a wrapper for Folio Institutional API."
bulletin "Created a full test suite for existing features."
bulletin "Refactored the application (From 1.5 to 3.9+ GPA on CodeClimate)."
bulletin "Created multistep forms for the investment process."
bulletin "Created a dashboard that heavily relies on external APIs "\
"as well as low level caching for increased performance."
start_date "June 2015"
end_date "Current"
end
entry do
title "Full-stack Rails developer"
company "BizRevr"
homepage "https://www.bizrevr.com/"
technologies "Ruby, Ruby on Rails, Elasticsearch"
bulletin "Helped design and develop new features. "
bulletin "Created an interface for bulk editing records similar to excel "\
"spreadsheet."
start_date "April 2015"
end_date "June 2015"
end
entry do
title "Full-stack Rails developer"
company "ThinkCERCA"
homepage "http://www.thinkcerca.com/"
technologies "Ruby, Ruby on Rails, Javascript"
description "I worked in a team with 6 other developers. "\
"My job consisted of maintaining, improving and adding new feature to "\
"existing Rails, backbone.js and Ember.js code."
start_date "July 2014"
end_date "Februrary 2015"
end
entry do
title "Full-stack Rails developer"
company "CampWire"
homepage "https://www.campwire.com/"
technologies "Ruby, Ruby on Rails, Javascript"
bulletin "Created a working payment system with Stripe. "
bulletin "Wrote a full test suite for existing application."
bulletin "Maintained and refactored existing code."
bulletin "Introduced new developers to the application."
start_date "February 2013"
end_date "July 2014"
end
end
education do
entry do
title "M.S. Computer Science"
company "The University of Zagreb"
start_date "2011"
end_date "2013"
end
entry do
title "B.S. Software Engineering"
company "The University of Zagreb"
start_date "2007"
end_date "2011"
end
end
open_source do
entry do
title "burek gem"
homepage "https://github.com/dabrorius/burek"
description "A ruby/rails gem for managing translations easy way."
end
entry do
title "markov-noodles"
homepage "https://github.com/dabrorius/markov-noodles"
description "Markov noodles is a minimalistic library for generating "\
"text using Markov chains."
end
entry do
title "grape"
homepage "https://github.com/ruby-grape/grape"
description "I am a contributer to grape an opinionated micro-framework "\
"for creating REST-like APIs in Ruby."
end
end
other_experience do
entry do
title "CatMe iOS App"
homepage "https://itunes.apple.com/us/app/id994659934"
description "CatMe is a simple native mobile app that allows you to "\
"virtually pet cats! Move your finger over a cat photo and you will "\
"hear it purr. It's free, ad-free and completely useless."
end
entry do
title "StackOverflow"
homepage "http://stackoverflow.com/users/735143/dabrorius"
end
end
end