Skip to content
View WorldWideGreg's full-sized avatar
🔨
🔨
Block or Report

Block or report WorldWideGreg

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

Hi, I'm WorldWideGreg

Twitter: Greg Morel Linkedin: Greg Morel

I'm a self-taught dev, tech lover, I totally love this world of creating things and tools that helps people, that makes things easier, faster or prettier!

interface GregsNeedsAndMotivations {
  salary: SalaryTypes;
  insurance: InsuranceTypes;
  workEnvironment: WorkEnvironmentTypes;
  techStack: Techs[];
}

interface GregsValue {
  efficiency: EfficiencyTypes;
  productivity: ProductivityTypes;
  reliability: ReliabilityTypes;
  autonomy: AutonomyTypes;
  techSkills: string[];
  softSkills: string[];
}

function greg(hiringIncentives: GregsNeedsAndMotivations): GregsValue {
  const {salary, insurance, workEnvironment, techStack} = hiringIncentives;
  if (salary !== SalaryTypes.ADEQUATE || insurance !== InsuranceTypes.COMPETITIVE || workEnvironment !== WorkEnvironmentsTypes.ENGAGING) {
    return HeadHunterResponses.REFUSE;
  }

  return {
    efficiency: EfficiencyTypes.VERY,
    productivity: ProductivityTypes.VERY_PRODUCTIVE,
    reliability: ReliabilityTypes.VERY_RELIABLE,
    autonomy: AutonomyTypes.AUTONOMOUS,
    techSkills: [
      'TypeScript', 'JavaScript', 'Python', 'GitHub', 'ReactJS', 'NextJS'
    ],
    softSkills: [
      'self-taught', 'mature', 'detail-oriented' 
    ]
  }
}

const answer = greg({...WhatYouAsACompanyHaveToOffer});

console.log(answer);
}

Thanks Jp for this 😂

Popular repositories

  1. MyPortfolio MyPortfolio Public

    HTML

  2. SpeechRecognitionPythonScripts SpeechRecognitionPythonScripts Public

    Python

  3. SiteWebUdemy SiteWebUdemy Public

    HTML

  4. MyPortfolioV2 MyPortfolioV2 Public

    Forked from realstoman/nextjs-tailwindcss-portfolio

    Next.js, React & Tailwind CSS version of the portfolio project.

    JavaScript

  5. WorldWideGreg WorldWideGreg Public