Alex Hoyer

WEB DEVELOPER


Alex Hoyer is a web developer aspiring to create web applications that will improve individuals lives both at work and at home. He is currently a student sharpening his skills at the UC Berkeley Extension Full Stack Web Development bootcamp!

Code Snippets


Temperature Conversion

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.

def celsiusToFarh(celsius)
    farhenheit = (celsius * 1.8) + 32
    return farhenheit
end

puts "Enter degrees in Celsius: "
degreesC = (gets.chomp).to_i

puts "The temperature in Farhenheit is #{celsiusToFarh(degreesC)} degrees"

puts "Enter a number"
num = gets.chomp.to_f

right_digit = num % 10

if right_digit / 1 == 1 && (num % 100 >= 20 || num % 100 <= 10)
    puts "#{num.to_i}st"
elsif right_digit / 2 == 1 && (num % 100 >= 20 || num % 100 <= 10)
    puts "#{num.to_i}nd"
elsif right_digit / 3 == 1 && (num % 100 >= 20 || num % 100 <= 10)
    puts "#{num.to_i}rd"
else
    puts "#{num.to_i}th"
end 

Ordinal Challenge

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.


Foobar

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?"
num = gets.chomp.to_i

count = 1
foobar = []

while count <= num
    if (count % 5 == 0) && (count % 3 == 0)
        foobar.push("Foobar")
    elsif (count % 5 == 0) && (count % 3 != 0)
        foobar.push("bar")
    elsif (count % 5 != 0) && (count % 3 == 0)
        foobar.push("Foo")
    else
        foobar.push(count)
    end
    count = count + 1
end

puts foobar
        

Web Apps


Quote Generator

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.

Yelp Clone

A Yelp clone that integrates with the Google Maps API and includes features like user comments, star ratings, image uploading, and user authentication.


Two-Sided Market Place

A two-sided, video-streaming marketplace platform that features credit card payment capabilities, user role management, complex user interfaces, and advanced database relationships.

Test Driven Development

An Instagram clone that was built using industry-standard, test-driven development following numerous red/green/refactor cycles.


Single Page Todo Application

This single-page to-do application features a fluid user interface that– by using JavaScript– allows users to rapidly add dynamic content.

Agile Team Project

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.


Skills & Tools


Alex has developed proficiency and expertise in the following programming languages and comfort with the following tools.


Contact


Currently entertaining new opportunities. Please get in touch via email:

alexhoyer22@gmail.com