Skip to content

spokedu13/spokedu13

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

56 Commits
Β 
Β 

Repository files navigation

Hello everyone! πŸ˜„ That's @spokedu13

🌱 Self-taught Programmer && a Lifelong Learner

I'm a πŸ‡«πŸ‡· French Web and Mobile developer, living in Marseille, France. Self-taught by nature, I like to develop complex web and mobile applications while learning new techniques each day. Passionate about technology and its value, I have a great desire to build a product that can solve people's problems at scale.

πŸ”§ Technologies && Tools

  • Front End

  • Back End

  • Mobile

πŸ”© Others skills

  • Versioning
  • Testing
  • Norming / Beautifying
  • Writing of documentation and comments

πŸ‘€ Interests

  • Web and Mobile Technologies
  • 2D and 3D Games on iOS and iPadOS
  • Cybersecurity
  • Photography
  • Travelling

πŸ† Projects

πŸ” How to reach me ?

🌐 www.anthonybarrin.fr

πŸ“« anthony.barrin@gmail.com

Citations

  • When you stop learning, you will stop going forward.
  • In Tech, it's not so much what we know that counts, it's what we are able to learn.
  • Knowledge have no limits.

About Me in PHP code

<?php

declare(strict_types=1);

namespace Developer\Spokedu13;

/**
 * This class allows me to introduce myself
 * @package Developer/Spokedu13
 * @version 1.0.0
 * @author Anthony Barrin <anthony.barrin@gmail.com>
 * @link https://www.anthonybarrin.fr
 */
#[AsHuman]
final class About extends Me implements DeveloperInterface
{
  public const USER = "Anthony Barrin";

  private string $pronouns = "He | His";
  private int $age = 30;
  private bool $isPassionateAboutCoding = true;
  private array $hobbies = [
    "Coding",
    "Studying",
    "Web and Mobile Technologies",
    "Cybersecurity"
  ];

  /**
  * This method gives my location.
  * @return string Return City and Country
  */
  public function getLocation(): string
  {
      return "Marseille, France";
  }

  /**
  * This method makes it possible to present my technical skills and my qualities.
  * @return array Return my skills
  */
  public function getSkills(): array
  {
      return ["hard-skills" => [
            Php::class,
            Javascript::class,
            Symfony::class
            ],
            "soft-skills" => [
            "Honest", "Patient", "Spirit of research", "Team Player", "Punctual"
            ]
       ];
  }

  public function getFutureGoal(): string
  {
      return 'Become a good developer and trainer.';
  }

  public function Ambitions(): void
  {
      becomeImmortal();
  }
}

Releases

No releases published

Packages

No packages published