Skip to content
View RodrigoStuani's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro
Block or Report

Block or report RodrigoStuani

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

Rodrigo Stuani

Linkedin Badge Gmail Badge

// Typescript version
const calculateAge = (birthdate: string): number => {
  const birthdateDate = new Date(birthdate);
  const currentDate = new Date();
  const ageInMilliseconds = currentDate - birthdateDate;
  const ageInYears = ageInMilliseconds / (1000 * 60 * 60 * 24 * 365.25);
  return Math.floor(ageInYears);
};

const myResume = (): void => {
  const name: string = 'Rodrigo Stuani';  
  const birthday: string = '1988-06-22T12:05:00';
  const from: string = 'Brazil';
  const age: number = calculateAge(birthday);
  let level: string = 'Software Developer';
  let job: string = 'Sesc-SC';
  let currentStudy: string = 'Clean Code e Clean Architecture';
  const social: { network: { name: string } }[] = [{
    network: {
      name: "https://www.linkedin.com/in/rodrigo-stuani/"
    }
  }];

  console.log(`Hello, my name is ${name}. I'm ${age} years old and I'm from ${from}. 
               I work as a ${level} at ${job} and currently I'm studying ${currentStudy}. 
               You can find me on LinkedIn at ${social[0].network.name}.`);
};

myResume();

Switch between light and dark mode to see the difference. Click to see the source

Pinned

  1. starter starter Public

    Curso starter da rocketseat ! Bora codar

    HTML

  2. nlw nlw Public

    Next Level Week - trilha booster da @rocketseat

    TypeScript