Git Product home page Git Product logo

Hey there πŸ‘‹, I'm timhussey!

Self proclaimed Director of Fun πŸŽ‰ and PHP Nerd πŸ€“




HTML5 CSS3 Javascript TypeScript Nodejs React.js Wordpress PHP MySQL

ESlint Prettier VS Code PHP Storm

Git GitHub Docker Amazon AWS

class AboutMe {
  constructor() {
    this.username = "@timhussey";
    this.fullname = "Tim Hussey";
    this.location = "Arizona";
    this.occupation = "Software Engineer";
    this.company = "Showit";
    this.birthday = new Date(1984, 6, 29); // months are 0-indexed Born in July
    this.hobbies = [
      "singing",
      "coding",
      "roller blading",
      "axe throwing",
      "gaming",
      "acting",
      "photography",
    ];
  }

  get age() {
    const currentYear = new Date().getFullYear();
    return currentYear - this.birthday.getFullYear();
  }

  introduce() {
    const { username, fullname, location, occupation, company } = this;
    return `Hello! I'm ${fullname} (known as ${username}). I'm a ${occupation} at ${company} and I live in ${location}.`;
  }

  isBirthdayToday() {
    const today = new Date();
    return today.getMonth() === this.birthday.getMonth() &&
      today.getDate() === this.birthday.getDate()
      ? "Hey, it's my birthday today! πŸŽ‰"
      : "Just a regular day for me.";
  }
}

const me = new AboutMe();
console.log(me.introduce());
console.log(`I'm currently ${me.age} years old.`);
console.log(me.isBirthdayToday());

timhussey's GitHub stats

Tim's Projects

Tim doesn’t have any public repositories yet.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.