Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View volodymyrkatkalov's full-sized avatar
🧠
Braining
🧠
Braining

Block or report volodymyrkatkalov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
volodymyrkatkalov/README.md
#!/usr/bin/env ruby

class SoftwareEngineer
  attr_reader :name, :roles, :languages, :email, :skills
  
  def initialize
    @name = "Volodymyr Katkalov"
    @roles = [
      "Frontend Developer",
      "Backend Developer",
      "Fullstack Developer",
      "DevOps Engineer",
      "Test Automation Developer (current)"
    ]
    @languages = ["en_US", "bg_BG", "zh_CN"]
    @skills = {
      programming_languages: ["Perl", "Python", "PHP", "Ruby", "C#", "JavaScript"],
      testing: ["Selenium", "Cypress", "PyTest", "OpenQA"],
      devops: ["Linux", "Docker", "Kubernetes", "OpenShift"],
      databases: ["PostgreSQL", "MongoDB", "Redis"]
    }
    @email = "[email protected]"
  end

  def say_hi
    puts "Thanks for dropping by, hope you find some of my work interesting."
    puts "Roles: #{roles.join(' → ')}"
    puts "Skills:"
    skills.each do |category, items|
      puts "  #{category.to_s.split('_').map(&:capitalize).join(' ')}: #{items.join(', ')}"
    end
    puts "In case you want to contact me feel free to drop me a line to #{email}"
  end
end

me = SoftwareEngineer.new
me.say_hi

Popular repositories Loading

  1. go-ai-iseven go-ai-iseven Public archive

    Go 1

  2. volodymyrkatkalov volodymyrkatkalov Public

    Config files for my GitHub profile.

  3. os-autoinst-distri-opensuse os-autoinst-distri-opensuse Public

    Forked from os-autoinst/os-autoinst-distri-opensuse

    os-autoinst test cases for openSUSE

    Perl

  4. opensuse-jobgroups opensuse-jobgroups Public

    Forked from os-autoinst/opensuse-jobgroups

    Python

  5. openQA openQA Public

    Forked from os-autoinst/openQA

    openQA web-frontend, scheduler and tools.

    Perl

  6. os-autoinst os-autoinst Public

    Forked from os-autoinst/os-autoinst

    OS-level test automation

    Perl