I am a Full-Stack Developer who recently earned a certificate from University of California, Berkeley. I have formed skills in Ruby on Rails, JavaScript, React.js, HTML, and CSS. I am passionate about developing web apps which is why I am looking to transition my career path into web development. With each project I am involved with I hope to show my passion and personality by making it a very user friendly experience. I feel I can work well on a team or if need be I can work alone to accomplish goals and meet deadlines. I also am very eager to further my learning and enhancing my skill set with all future projects. My focus is to become the best Full-Stack Developer I can be.
This Ruby program will promt the user for a temperature in degrees Celsius and let the user know what the corresponding temperature is in Fahrenheit.
n =0
puts "Hello. Enter a celsius value:"
celsius = gets
fahrenheit = (celsius.to_i * 9 / 5) + 32
puts "The fahrenheit equivalent is:"
puts fahrenheit
puts "Goodbye"
n =0
puts "Enter a number"
number = gets.chomp.to_i
right_digit = number % 10
if right_digit == 0 && number !=0
puts "That's the #{number}th item!"
elsif right_digit == 1 && (number < 10 || number > 20)
puts "That's the #{number}st item!"
elsif right_digit == 2 && (number < 10 || number > 20)
puts "That's the #{number}nd item!"
elsif right_digit == 3 && (number < 10 || number > 20)
puts "That's the #{number}rd item!"
elsif number <= 0
puts 'Please enter a number above 0'
else
puts "That's the #{number}th item!"
end
puts "Goodbye"
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.
n =0
puts "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
puts "That's the #{number}th item!"
elsif right_digit == 1 && (number < 10 || number > 20)
puts "That's the #{number}st item!"
elsif right_digit == 2 && (number < 10 || number > 20)
puts "That's the #{number}nd item!"
elsif right_digit == 3 && (number < 10 || number > 20)
puts "That's the #{number}rd item!"
elsif number <= 0
puts 'Please enter a number above 0'
else
puts "That's the #{number}th item!"
end
puts "Goodbye"
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 a solo project that allows users to pick which football team they think will win the game. Used an external API, Ruby and JavaScript code to build this web app.
I have developed proficiency and expertise in the following programming languages and comfort with the following tools.