Skip to content
View jonathan-messina's full-sized avatar
✨
✨

Block or report jonathan-messina

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

Hope you find something that catches your eye!

jonathan-messina


interface DeveloperI {
  name: string;
  role: string;
  email: string;
  openToWork: boolean; 
  languageSpoken: string[];
  introduction(): () => void;
  sayHello: () => void;
  isOpenToWork: () => void
  getLinkedinProfile: () => string;
  getResume: () => string;
}

const SoftwareDeveloper: DeveloperI = {
    name: "John",
    role: "Software Developer",
    email: "a.jonathan.messina@gmail.com",
    openToWork: true,
    languageSpoken: ["es-ES", "en_US"],
    introduction() {
        console.log(`Hi!, I'm ${this.name}, I'm a ${this.role}.`);
    },
    sayHello() {
        console.log("Thanks for reaching out, let's build great products together!.");
    },
    isOpenToWork() {
        console.log(`Open to Work: ${this.openToWork}.`);
    },
    getLinkedinProfile() {
        return "https://www.linkedin.com/in/jonathan-messina";
    },
    getResume() {
        return "https://github.com/jonathan-messina/resume";
    }
}

SoftwareDeveloper.introduction();
SoftwareDeveloper.sayHello();
SoftwareDeveloper.isOpenToWork();
const linkedinProfile = SoftwareDeveloper.getLinkedinProfile();
const resume = SoftwareDeveloper.getResume();
console.log(linkedinProfile);
console.log(resume);

output:

Hi!, I'm John, I'm a Software Developer.
Thanks for reaching out, let's build great products together!.
Open to Work: true.
https://www.linkedin.com/in/jonathan-messina
https://github.com/jonathan-messina/resume

Jokes Card

Visitor Count

Pinned Loading

  1. blackjack-game blackjack-game Public

    Juego de Blackjack hecho con Vanilla Javascript

    JavaScript

  2. JAGUARETE_KAA JAGUARETE_KAA Public

    Projecto Final del Curso de Desarrollo Web FullStack de PoloTIC

    Python

  3. spiralize-kata spiralize-kata Public

    Coding challenge using array mapping and booleans to make a spiral.

    TypeScript

  4. api-8 api-8 Public

    API REST creada con Laravel 8.

    PHP

  5. blog blog Public

    Blog app made with Laravel 6

    PHP

  6. face-recognition face-recognition Public

    Small script for face recognition in given images, using the opencv package.

    Python