class Developer
def initialize
@name = "kossman"
@role = "Frontend Developer"
@skills = {
"Backend" => ["C#", "Ruby", "Ruby on Rails", "Python", "NodeJS", "C++", "Laravel"],
"Database" => ["MySQL", "PostgreSQL", "MSSQL"],
"Frontend" => ["HTML/CSS", "JavaScript", "TailwindCSS", "React (basic)", "Nuxt (basic)"],
"DevOps" => ["Docker", "Git", "Ubuntu (WSL)"],
}
@passion = "im dead inside"
end
def to_s
"#{@name} | #{@role}"
end
end
me = Developer.new
puts me
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.