Skip to content
View IvanReyesO7's full-sized avatar
🌯
🌯
  • GMO Internet Group, Inc.
  • Tokyo, Japan
  • 21:42 (UTC +09:00)

Highlights

  • Pro
Block or Report

Block or report IvanReyesO7

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
IvanReyesO7/README.md
#!/usr/bin/ruby

class SoftwareEngineer
  def initialize(params)
    @name              = params[:name]
    @role              = params[:role]
    @current_company   = params[:current_company]
    @languages_spoken  = params[:languages_spoken]
    @location          = params[:location]
    @contact           = params[:contact]
  end

  def say_hello
    message = [
      "Hello, World! Thanks for dropping by...",
      "My name is #{@name}, I am a #{@role} located in #{@location}.",
      "Currently working at #{@current_company}.",
      "#{@languages_spoken.size > 1 ? "Can speak #{@languages_spoken[0...-1].join(", ")}, and #{@languages_spoken[-1]}." : "Can speak #{@languages_spoken[0]}"}",
      "You can contact me at: #{@contact}.",
    ].join("\n")
  end
end

me = SoftwareEngineer.new({
  name:             "Ivan Reyes",
  role:             "Software Engineer",
  current_company:  "GMO Internet Group",
  languages_spoken: ["en_US", "es_CO", "ja_JP"],
  location:         "Tokyo, Japan",
  contact:          "https://www.linkedin.com/in/ivan-reyes-9504/"
})

puts me.say_hello
Hello, World! Thanks for dropping by...
My name is Ivan Reyes, I am a Software Engineer located in Tokyo, Japan.
Currently working at GMO Internet Group.            
Can speak en_US, es_CO, and ja_JP.
You can contact me at: https://www.linkedin.com/in/ivan-reyes-9504/.
=> nil

Pinned Loading

  1. SnapLinePi SnapLinePi Public

    SnapLinePi is a simple integration that allows you to capture snapshots using a Raspberry Pi camera module via a LINE bot command

    Go

  2. slack-spotify-integration slack-spotify-integration Public

    Slack 🤝 Spotify integration using Gin-Gonic Go framework

    Go 1

  3. Pi-day Pi-day Public

    3/14. Happy PI Day! 🎉. this is a quick and fun exercise to generate an approximate value of PI with a random coordinates generator using JavaScript and basic geometry concepts.

    HTML 1

  4. sharehouse-bot sharehouse-bot Public

    掃除お知らせくん

    Ruby 1