Thanks to visit codestin.com
Credit goes to github.com

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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!

Senior Front-End Developer | React & TypeScript Expert | SaaS Founder | Creative Problem Solver | Director of Fun πŸŽ‰




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 = "San Jose, CA";
    this.occupation = "Senior Front-end Software Engineer";
    this.company = "Available now";
    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