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

Block or report RafaelM10

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

Olá, devs! Sejam bem-vindos ao meu perfil 👋

Sou apaixonado por desenvolvimento de software, resolução de problemas e colaboração em equipe para criar soluções inovadoras.

abstract class Apresentation {
 private $name;
 private $occupationArea;

 public function setName(string $rafaelMeira): string {
   $this->name = $rafaelMeira;
}
 public function setOccupationArea(string $fullstackDeveloper): string {
   $this->occupationArea = $fullstackDeveloper;
}

public function skills(): array {
   return [
        "frontend" => ["HTML", "CSS", "JavaScript", "React", "Typescript"],
        "backend" => ["PHP", "Node.js", "Typescript", "SQL"],
        "unitaryTests" => ["JEST", "PHPUNIT],
        "otherKnowledges" => ["Linux", "Express", "Sequelize", "NestJS", "Swagger", "TypeORM", "JWT"],
        "database" => ["MySQL", "PostgreSQL", "MongoDB", "MariaDB"],
        "metodologia_agil" => ["Azure", "Scrum", "Kanban", "Jira"],
        "Devops" => ["Docker"]
    ];
 }

public function getName(): string {
  return $this->name;
}
 public function getOccupationArea(): string {
   return $this->occupationArea;
}
}

Popular repositories

  1. RafaelM10 RafaelM10 Public

    3

  2. Challenge-slide Challenge-slide Public

    Training programming logic with this slide

    CSS 1

  3. FinApi FinApi Public

    Back end feito em Node - foco Api financeira

    JavaScript

  4. Challenge-counter Challenge-counter Public

    Challenge create one counter, who have three itens decrement, increment and reset

    HTML

  5. CodeWars CodeWars Public

    See here my code solution on the codewars website or in my repository

  6. Calculadora-js Calculadora-js Public

    Calculadora desenvolvida em JavaScript

    CSS