Skip to content

Instantly share code, notes, and snippets.

@lando2319
Last active December 15, 2015 11:08
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 lando2319/5250412 to your computer and use it in GitHub Desktop.
Save lando2319/5250412 to your computer and use it in GitHub Desktop.
# THIS IS MY RESUME
name = "Mike Land"
email = "MikePLand@gmail.com"
website = "http://MikePLand.com"
blog = "http://MikePLand.com/blog"
# Skills Include
ror = "Ruby on Rails"
wp = "Wordpress"
def education
"The Starter League - Chicago, IL
Web Development Program - Winter 2013
Coursework: Ruby, Ruby on Rails, Javascript, Jquery, AJAX
DePaul University - Chicago, IL
BS - Entrepreneurship, BS - Economics - Graduated 2011"
end
def professional_experience
"2012 Rocket Lease - Chicago, IL
Role: Business Development
Startup company which provides online rental agreements
2011 - 2012 Codex Creative - Chicago, IL
Role: Sales Associate
Web Development Company
2010 - 2011 Tech on Wheels Enterprises - Chicago, IL
Role: Contractor
IT Company
2009 Jewish Council on Urban Affairs - Chicago, IL
Role: Research Fellow
Non-Profit Organization"
end
def portfolio
"Demo Day Project: http://preadventurrus.herokuapp.com/
Wordpress Examples: http://MikePLand.com"
end
### Readable Resume Ends Here ###
### Run this code as a ruby file in Terminal for the full experience
puts "\nHello my name is, " + name + " I began coding " + ror + " at The Starter League Winter 2013"
puts "I've also been creating " + wp + " websites for the last " + (Time.new.year - 2009).to_s + " years"
puts "\nHere is an example of a " + ror + " app I created" + "\n" + portfolio
puts "\nAlso checkout " + website + " for additional websites in my portfolio"
puts "\nMy Education includes:" + "\n" + education
puts "\nMy Professional Experience includes:\n" + professional_experience
puts "\nAre you looking for a Ruby on Rails Developer?"
puts "\nWhat I can bring to your organization is creativity and dedication"
puts "contact me at " + email
puts "\n"
@mattsah
Copy link

mattsah commented Mar 27, 2013

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