class SoftwareEngineer
attr_reader :name, :role, :location, :focus
def initialize
@name = "Ivan Bondarenko"
@role = "Senior Software Engineer"
@location = "Cracow, Poland"
@focus = ["reliable web products", "clean architecture", "developer experience"]
end
def say_hi
"Thanks for dropping by. I hope you find something interesting here."
end
end
ivan = SoftwareEngineer.new
puts ivan.say_hiLanguages:
Backend:
Frontend:
Data & Messaging:
Infrastructure:
Developer Tools:


