Skip to content
View timhussey's full-sized avatar

Highlights

  • Pro

Block or report timhussey

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
timhussey/README.md

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

Popular repositories Loading

  1. jquery.hammer.js jquery.hammer.js Public

    Forked from hammerjs/jquery.hammer.js

    jQuery plugin for Hammer.js

    JavaScript

  2. facebook-uid facebook-uid Public

    Forked from weirdGuy/facebook-uid

    Getting facebook user id from his nickname

    PHP

  3. Test-Stuff Test-Stuff Public

    Just a test

  4. Widget-Blur Widget-Blur Public

    Forked from mzeryck/Widget-Blur

    JavaScript

  5. Weather-Cal Weather-Cal Public

    Forked from mzeryck/Weather-Cal

    This is a Scriptable widget that lets you display, position, and format multiple elements, including dates and events, weather information, battery level, and more. You can even create your own eleโ€ฆ

    JavaScript

  6. timhussey timhussey Public