Sharon Huang

SEO Analyst


Sharon Huang is a passionate digital marketing professional who works at a software company. She has experienced in Search Engine Optimization (SEO), Technical SEO, App Store Optimization (ASO) and more. Currently, she is trying to develop her skill sets further in order to be a full-stack developer.

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 celsius_fahrenheit(celcius)
			  celcius * 1.8 + 32
		end 

		puts "Enter degrees in Celcius"
		celcius = gets.to_i

		puts celsius_fahrenheit(celcius)
			


    puts "How many items do you want to see?"
      items = gets.to_i

    def ordinal (items)
      suffix = items % 10
      without_suffix = items

      if without_suffix == 11
        return "That's the #{without_suffix}th item!"
      elsif without_suffix == 12
        return "That's the #{without_suffix}th item!"
      elsif without_suffix == 13
        return "That's the #{without_suffix}th item!"
      elsif suffix == 1
        return "That's the #{items}st item!"
      elsif suffix == 2
        return "That's the #{items}nd item!"
      elsif suffix == 3
        return "That's the #{items}rd item!" 
      else
        return "That's the #{number}th item!"
      end
    end

    puts ordinal (items)
			

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 "Enter a number"
		number = gets.to_i

		number.times do |i|
			i += 1 
			b = i % 3
			c = i % 5
		if b == 0 && c == 0
		  puts "foobar "
		elsif b == 0
		  puts "foo "
		elsif c == 0
		  puts "bar "
		else
		  puts "#{i} "
		end
		end
			

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



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


Currently entertaining new opportunities.


Please get in touch via Email or Linkedin:

Email
Linkedin