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

Block or report arthurisvi

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

📂 Welcome to my Github!
💻 Software Developer at Bling
👨‍🎓 Information Systems at UPE (8/8)

<?php

class Developer {

 public $name;
 public $skills;
 
 public function __construct($name, $skills){
   $this->name = $name;
   $this->skills = $skills;
 }
}

$mySkills = array(
 "frontend" => array("HTML", "CSS", "Bootstrap", "Javascript", "JQuery", "React", "Vue"),  
 "backend" => array("PHP", "Laravel", "HyperF", "Swoole", "GO"),
 "others" => array("Docker", "Kafka", "Redis", "DynamoDB", "MySQL")
);

$dev = new Developer ('Arthur Isvi', $mySkills);
echo $dev;

Snake animation

Pinned Loading

  1. search-address-go search-address-go Public

    Buscador de endereço em Golang. A aplicação está baseada em DDD e princípios SOLID, além de cobertura de testes.

    Go

  2. php-automated-tests php-automated-tests Public

    Estudos sobre testes automatizados com PHP e PHPUnit.

    PHP

  3. php-swoole-kafka php-swoole-kafka Public

    Projeto de estudos envolvendo uma configuração simples de PHP utilizando o Swoole e mensageria com Kafka

    PHP

  4. my-weather my-weather Public

    Aplicação web que mostra o clima atual das cidades.

    Vue