Katie Urie is a motivated service industry professional focused on providing extraordinary experiences that positively impact business goals and relationships. With nearly 15 years of experience under her belt, Katie carries a wide range of expertise in the outdoor, service, and hospitality industries. She relocated to Crested Butte, CO in 2015, where she has continued her work as a service professional and expanded upon her love and passion for the outdoors.
This Ruby program will prompt the user for a temperature in degrees Celsius and let the user kno what the corresponding temperature is in Fahrenheit.
print "Enter degrees in Celsius:"
degrees = gets.chomp.to_f
def celsius_to_fahrenheit(degrees)
return degrees * (9 / 5) + 32
end
puts "The temperature is #{celsius_to_fahrenheit(degrees)} degrees in Fahrenheit."
puts "Enter a number."
number = gets.chomp.to_i
suffix = number % 10
def ordinal(suffix)
if suffix == 1
return "st"
elsif suffix == 2
return "nd"
elsif suffix == 3
return "rd"
else
return "th"
end
end
puts "That's the #{number}#{ordinal(suffix)} number!"
This Ruby program will convert a plain number to the ordinal of the number. So for example, if the user enters 2, it will display 2nd, if the user enters 3, it will display 3rd, etc.
This Ruby program is an adaptation of a classic technical interview problem which displays sequences of the Foobar pattern.
print "How many items do you want to see?"
items = gets.chomp.to_i
list = []
(1..items).each do |n|
if n % 3 == 0 && n % 5 == 0
list << "FOOBAR"
elsif n % 3 == 0
list << "FOO"
elsif n % 5 == 0
list << "BAR"
else
list << n
end
end
puts list
A database-powered quote generator with a mobile-first design, using the Ruby on Rails framework, HTML, and CSS. Uses Git and GitHub for version control, and launched on Heroku.
A Yelp clone that integrates with the Google Maps API and includes features like user comments, star ratings, image uploading, and user authentication.
A two-sided, video-streaming marketplace platform that features credit card payment capabilities, user role management, complex user interfaces, and advanced database relationships.
An Instagram clone that was built using industry-standard, test-driven development following numerous red/green/refactor cycles.
This single-page to-do application features a fluid user interface that– by using JavaScript– allows users to rapidly add dynamic content.
Worked on an Agile software development team building a chess application. Under the guidance of a senior software engineer, we had weekly Agile team meetings for code reviews, sprint planning, and feature assignments.
Katie has developed proficiency and expertise in the following programming languages and comfort with the following tools.