Skip to content
View petertimwalker's full-sized avatar

Block or report petertimwalker

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
petertimwalker/README.md
class SoftwareEngineer < Person
  attr_reader :years_professional

  def initialize(name:, place_of_birth:, birthdate:)
    super(name: name, place_of_birth: place_of_birth, birthdate: birthdate)
  end

  def greeting
    super # 👋 Hi, I’m @petertimwalker from Boston MA and I'm 26 years old
    puts "I've been working professionally for the past #{years_professional} years"
    puts "and I'm interested in Ruby, React, AWS, and Docker"
  end

  private

  def years_professional
    @years_professional ||= 4
  end
end

Popular repositories Loading

  1. petertimwalker petertimwalker Public

    Config files for my GitHub profile.

  2. kickstart.nvim kickstart.nvim Public

    Forked from nvim-lua/kickstart.nvim

    A launch point for your personal nvim configuration

    Lua

  3. dotfiles dotfiles Public

    Shell

  4. portfolio-site portfolio-site Public

    JavaScript

  5. api-service api-service Public

    JavaScript

  6. vocode-core vocode-core Public

    Forked from vocodedev/vocode-core

    🤖 Build voice-based LLM agents. Modular + open source.

    Python