Jean Velonis is a Credential Developer at Salesforce. She has passion for solving complex business problems. Highly motivated, self-starter who produces epic shit. Currently creating and executing innovative programs and processes on Trailhead.
This Ruby program will prompt the user for a temperature in degrees Celsius and let the user know what the corresponding temperature is in Fahrenheit.
puts "Enter degress in Celcius:"
celcius = gets.chomp
fahrenheit = (celcius.to_i * 9/5)+32
conversion = "The temperature is #{fahrenheit} degrees Fahrenheit."
puts conversion
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.
puts "Enter a number:"
n = gets.chomp.to_i
if (11..13).include?(n % 100)
puts "That's the " + n.to_s + "th item!"
else
case n % 10
when 1
puts "That's the " + n.to_s + "st item!"
when 2
puts "That's the " + n.to_s + "nd item!"
when 3
puts "That's the " + n.to_s + "rd item!"
else
suffix = "th"
puts "That's the " + n.to_s + suffix + " item!"
end
end
This Ruby program is an adaptation of a classic technical interview problem which displays sequences of the Foobar pattern.
puts "How many items do you want to see?"
items = gets.chomp.to_i
number = []
(1..items).each do |n|
if n % 3 == 0 && n % 5 == 0
number << "foobar"
elsif n % 3 == 0
number << "foo"
elsif n % 5 == 0
number << "bar"
else
number << n
end
end
puts number
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.
Jean has developed proficiency and expertise in the following programming languages and comfort with the following tools.
Currently learning to be AWESOME at code! Please get in touch via email: