Skip to content

Instantly share code, notes, and snippets.

@butcher
Last active December 17, 2015 08:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save butcher/5579476 to your computer and use it in GitHub Desktop.
Save butcher/5579476 to your computer and use it in GitHub Desktop.
# initialize data
name = 'Pavel Nikitin'
start_working_with_ruby = 2008
timeLoad = 'fulltime'
technologies = ['Rails', 'MySQL', 'Cassandra', 'HTML', 'CSS']
personal = ['talented', 'creative', 'team player']
contacts = {:email => 'daddybutcher@gmail.com', :skype => 'pavel.butcher.nikitin', :blog => 'http://itstickers.blogspot.com', :linkedin => 'http://www.linkedin.com/pub/pavel-nikitin/16/327/363'}
# build CV
cv = <<CV
Hi, my name is #{name} and I am a Ruby developer with #{Time.now.year - start_working_with_ruby} years experience.
I am looking for a #{timeLoad} position.
I am experienced with #{technologies.join(', ')}.
If you are looking for a #{personal.join(', ')} please contact me!
#{contacts.to_a.map{|c| c.join(': ')}.join("\n")}
CV
# print CV
puts cv
@grosser
Copy link

grosser commented May 14, 2013

  • startWorkingWithRuby -> start_working_with_ruby
  • .join('\n') does not work
  • if you looking for -> if you are looking for a

@butcher
Copy link
Author

butcher commented May 15, 2013

Thank you @grosser.
Gist updated!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment