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 = "volodymyr.katkalov@gmail.com"
  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

Pinned Loading

  1. kmp_merge kmp_merge Public

    Byte-level KMP-based merger for overlapping snapshots

    C

  2. microsoft/lisa microsoft/lisa Public

    LISA is developed and maintained by Microsoft, to empower Linux validation.

    Python 325 232

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

    os-autoinst test cases for openSUSE

    Perl 91 296