Skip to content
View maticapuano's full-sized avatar
🤓
eat(); > sleep(); > code(); > repeat();
🤓
eat(); > sleep(); > code(); > repeat();
Block or Report

Block or report maticapuano

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

About Me

Hi there! My name is Matías Capuano, and I'm a Backend Developer from Argentina. I have experience working with a variety of technologies, including Node.js, TypeScript, NestJS, PostgreSQL, Docker, Redis, AWS, Kubernetes, Git, Terraform, Serverless, Microservices, and Clean Architecture.

Skills and Experience

Here's an example of some of the skills I have:

export type Person = {
  name: string;
  age: number;
  country: string;
  profession: string;
  skills: string[];
  otherSkills: string[];
};

const person: Person = {
  name: 'Matías Capuano',
  age: 25,
  country: 'argentina',
  profession: 'Backend Developer',
  skills: [
    'Node.js',
    'TypeScript',
    'NestJS',
    'PostgreSQL',
    'Docker',
    'Redis',
    'AWS',
    'Kubernetes',
    'Git',
    'Terraform',
    'Serverless',
    'Microservices',
    'Clean Architecture',
  ],
  otherSkills: ['React', 'Next.js'],
};

const toSentence = (array: string[]): string => {
  const last = array.pop();

  return `${array.join(', ')} and ${last}`;
};

const printPerson = (person: Person): void => {
  const { name, age, country, profession, skills } = person;

  console.log(`
    Hi, I'm ${name} from ${country}. I'm ${age} years old and I work as a ${profession}.
    I have experience working with ${toSentence(skills)}.
  `);
};

printPerson(person);

Contact

If you want to get in touch, you can reach me at:

Pinned Loading

  1. nest-schedule-bull nest-schedule-bull Public

    A NestJS module for scheduling Bull jobs using cron expressions

    TypeScript 2